home *** CD-ROM | disk | FTP | other *** search
- // discat.h - disk catalog sample code
- //
- // This is a part of the MetaKit library.
- // Copyright (c) 1996 Meta Four Software.
- // All rights reserved.
- /////////////////////////////////////////////////////////////////////////////
-
- #ifndef __AFXWIN_H__
- #error include 'stdafx.h' before including this file for PCH
- #endif
-
- #include "resource.h" // main symbols
-
- /////////////////////////////////////////////////////////////////////////////
-
- class CMyApp : public CWinApp
- {
- public:
- virtual BOOL InitInstance();
- };
-
- /////////////////////////////////////////////////////////////////////////////
-
- class CMainDlgWindow : public CDialog
- {
- private:
-
- public:
- CMainDlgWindow();
-
- //{{AFX_DATA(CMainDlgWindow)
- enum { IDD = IDD_MAIN_DIALOG };
- CEdit m_path;
- CStatic m_status;
- //}}AFX_DATA
-
- //{{AFX_VIRTUAL(CMainDlgWindow)
- virtual void DoDataExchange(CDataExchange* pDX);
- //}}AFX_VIRTUAL
-
- protected:
- //{{AFX_MSG(CMainDlgWindow)
- afx_msg void OnScanBtn();
- virtual BOOL OnInitDialog();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
- // $Id: discat.h,v 1.2 1996/12/04 14:50:12 jcw Exp $
-